Q3Matrix3x3_Transpose
You can use theQ3Matrix3x3_Transpose
function to transpose a 3-by-3 matrix.
TQ3Matrix3x3 *Q3Matrix3x3_Transpose ( const TQ3Matrix3x3 *matrix3x3, TQ3Matrix3x3 *result);
matrix3x3
- A 3-by-3 matrix.
result
- On exit, the transpose of
matrix3x3
.DESCRIPTION
TheQ3Matrix3x3_Transpose
function returns, as its function result and in theresult
parameter, the transpose of the matrixmatrix3x3
.